home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1991 / 01 / b_new.c < prev    next >
C/C++ Source or Header  |  1990-10-31  |  321b  |  19 lines

  1. /* b_new.c -- Listing 5. */
  2.  
  3. #include <stdlib.h>
  4. #include "textbuf.h"
  5.  
  6. PUBLIC textbuf *b_new( int nrows, int ncols )
  7. {
  8.     textbuf *b;
  9.  
  10.     if( b = malloc( sizeof(textbuf)) )
  11.         if( !b_construct( b, nrows, ncols ) )
  12.         {
  13.             free( b );
  14.             b = NULL;
  15.         }
  16.  
  17.     return b;
  18. }
  19.